home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / NetFractal™ / Fractal 8 source / DemoDoc.cp < prev    next >
Encoding:
Text File  |  1995-06-24  |  228 b   |  26 lines  |  [TEXT/MPCC]

  1. // DemoDoc.cp
  2.  
  3. #include "DemoDoc.h"
  4.  
  5.  
  6. DemoDoc::DemoDoc(
  7.     LCommander *inSuper)
  8. {
  9.     fNetPoint = nil;
  10. }
  11.  
  12.  
  13. DemoDoc::~DemoDoc()
  14. {
  15.     delete fNetPoint;
  16. }
  17.  
  18.     
  19. void
  20. DemoDoc::SetNetPoint(
  21.     NetPoint* inNewPoint)
  22. {
  23.     fNetPoint = inNewPoint;
  24. }
  25.  
  26.